home *** CD-ROM | disk | FTP | other *** search
/ SIGGRAPH 2002 Course Notes / SIGGRAPH 2002 - Course Notes - Disc 1.iso / pc / notes / 18 / supplemental_material / SVG_Ex / animateMotion.svg next >
Encoding:
Extensible Markup Language  |  2002-04-22  |  482 b   |  11 lines

  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
  3.      "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
  4. <svg xmlns="http://www.w3.org/2000/svg">
  5.     <title> Animate Text Across the Screen </title>
  6.     <text font-size="20"> <animateMotion path="M 400 50 L 10 50" 
  7.           begin="0s" dur="10s" fill="freeze" />
  8.           <animateMotion path="M 400 50 L 10 50" begin="0s" dur="10s" fill="freeze" /> 
  9.    </text>
  10. </svg>
  11.